home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 23 / AACD 23.iso / AACD / Programming / tek / array / strcat.c < prev    next >
C/C++ Source or Header  |  2001-05-12  |  293b  |  22 lines

  1.  
  2. #include "tek/array.h"
  3.  
  4. /* 
  5. **    TEKlib
  6. **    (C) 2001 TEK neoscientists
  7. **    all rights reserved.
  8. **
  9. **    TVOID TStrCat(TSTRPTR dest, TSTRPTR addstr)
  10. **
  11. **    concatenate string.
  12. **
  13. */
  14.  
  15. TVOID TStrCat(TSTRPTR dest, TSTRPTR addstr)
  16. {
  17.     if (dest && addstr)
  18.     {
  19.         TStrCopy(addstr, dest + TStrLen(dest));
  20.     }
  21. }
  22.